byte x = 0;
 
void setup() {
  Serial.begin(9600);
  do{
    Serial.println(x);
    x++;
  }while(x < 100);
}
 
void loop() {
  
}